﻿.my-bg {
    width: 100%;
    height: 400px; /* change size as you want */
    background: radial-gradient(circle at bottom left, #2b46ff 0%, #1b2e80 40%, #0d195c 70%, #08124a 100% );
}
.faq-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-box h2 {
    margin-bottom: 20px;
}

details {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

summary {
    font-weight: 600;
    font-size: 1.1rem;
    outline: none;
}

details[open] {
    background: #f8f9fa;
    border-color: #bbb;
}

details p {
    margin-top: 10px;
    color: #444;
}

 
